home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH22.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-02  |  185 b   |  13 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4. functiona();
  5. printf("A function sandwich\n");
  6. functiona();
  7. }
  8. functiona()
  9. {
  10.  int number = 7;
  11.  printf("The value of number is %d.\n", number);
  12.  }
  13.